//12.1 - The Message Box Program - Mark Lee - Prima Publishing #include int WINAPI WinMain( HINSTANCE hInst, HINSTANCE hPreInst, LPSTR lpszCmdLine, int nCmdShow ) { MessageBox(NULL, "Windows Programming is Easy!!", "My First Message Box", MB_OKCANCEL | MB_ICONINFORMATION); }